From 8168ebed05e593b22eee64d33cd04be5309ff3ac Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 2 Dec 2005 11:06:40 +0100 Subject: [PATCH] Fix __get_user() asm warning by making source and dest operands the same size (32 bits). Signed-off-by: Keir Fraser --- xen/common/grant_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c index 5d4955196b..93c352e6ed 100644 --- a/xen/common/grant_table.c +++ b/xen/common/grant_table.c @@ -74,7 +74,7 @@ __gnttab_map_grant_ref( grant_ref_t ref; struct domain *ld, *rd; struct vcpu *led; - u16 dev_hst_ro_flags; + u32 dev_hst_ro_flags; int handle; u64 addr; unsigned long frame = 0; -- 2.30.2